home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 322 / patch / pch.c < prev    next >
C/C++ Source or Header  |  1988-10-20  |  30KB  |  1,129 lines

  1. /* $Header: pch.c,v 2.0.1.7 88/06/03 15:13:28 lwall Locked $
  2.  *
  3.  * $Log:    pch.c,v $
  4.  * Revision 2.0.1.7  88/06/03  15:13:28  lwall
  5.  * patch10: Can now find patches in shar scripts.
  6.  * patch10: Hunks that swapped and then swapped back could core dump.
  7.  * 
  8.  * Revision 2.0.1.6  87/06/04  16:18:13  lwall
  9.  * pch_swap didn't swap p_bfake and p_efake.
  10.  * 
  11.  * Revision 2.0.1.5  87/01/30  22:47:42  lwall
  12.  * Improved responses to mangled patches.
  13.  * 
  14.  * Revision 2.0.1.4  87/01/05  16:59:53  lwall
  15.  * New-style context diffs caused double call to free().
  16.  * 
  17.  * Revision 2.0.1.3  86/11/14  10:08:33  lwall
  18.  * Fixed problem where a long pattern wouldn't grow the hunk.
  19.  * Also restored p_input_line when backtracking so error messages are right.
  20.  * 
  21.  * Revision 2.0.1.2  86/11/03  17:49:52  lwall
  22.  * New-style delete triggers spurious assertion error.
  23.  * 
  24.  * Revision 2.0.1.1  86/10/29  15:52:08  lwall
  25.  * Could falsely report new-style context diff.
  26.  * 
  27.  * Revision 2.0  86/09/17  15:39:37  lwall
  28.  * Baseline for netwide release.
  29.  * 
  30.  */
  31.  
  32. #include "EXTERN.h"
  33. #include "common.h"
  34. #include "util.h"
  35. #include "INTERN.h"
  36. #include "pch.h"
  37.  
  38. /* Patch (diff listing) abstract type. */
  39.  
  40. static long p_filesize;            /* size of the patch file */
  41. static LINENUM p_first;            /* 1st line number */
  42. static LINENUM p_newfirst;        /* 1st line number of replacement */
  43. static LINENUM p_ptrn_lines;        /* # lines in pattern */
  44. static LINENUM p_repl_lines;        /* # lines in replacement text */
  45. static LINENUM p_end = -1;        /* last line in hunk */
  46. static LINENUM p_max;            /* max allowed value of p_end */
  47. static LINENUM p_context = 3;        /* # of context lines */
  48. static LINENUM p_input_line = 0;    /* current line # from patch file */
  49. static char **p_line = Null(char**);    /* the text of the hunk */
  50. static short *p_len = Null(short*);    /* length of each line */
  51. static char *p_char = Nullch;        /* +, -, and ! */
  52. static int hunkmax = INITHUNKMAX;    /* size of above arrays to begin with */
  53. static int p_indent;            /* indent to patch */
  54. static LINENUM p_base;            /* where to intuit this time */
  55. static LINENUM p_bline;            /* line # of p_base */
  56. static LINENUM p_start;            /* where intuit found a patch */
  57. static LINENUM p_sline;            /* and the line number for it */
  58. static LINENUM p_hunk_beg;        /* line number of current hunk */
  59. static LINENUM p_efake = -1;        /* end of faked up lines--don't free */
  60. static LINENUM p_bfake = -1;        /* beg of faked up lines */
  61.  
  62. /* Prepare to look for the next patch in the patch file. */
  63.  
  64. void
  65. re_patch()
  66. {
  67.     p_first = Nulline;
  68.     p_newfirst = Nulline;
  69.     p_ptrn_lines = Nulline;
  70.     p_repl_lines = Nulline;
  71.     p_end = (LINENUM)-1;
  72.     p_max = Nulline;
  73.     p_indent = 0;
  74. }
  75.  
  76. /* Open the patch file at the beginning of time. */
  77.  
  78. void
  79. open_patch_file(filename)
  80. char *filename;
  81. {
  82.     if (filename == Nullch || !*filename || strEQ(filename, "-")) {
  83.     pfp = fopen(TMPPATNAME, "w");
  84.     if (pfp == Nullfp)
  85.         fatal2("patch: can't create %s.\n", TMPPATNAME);
  86.     while (fgets(buf, sizeof buf, stdin) != Nullch)
  87.         fputs(buf, pfp);
  88.     Fclose(pfp);
  89.     filename = TMPPATNAME;
  90.     }
  91.     pfp = fopen(filename, "r");
  92.     if (pfp == Nullfp)
  93.     fatal2("patch file %s not found\n", filename);
  94. #ifdef atarist 
  95.     stat(filename, &filestat);
  96. #else
  97.     Fstat(fileno(pfp), &filestat);
  98. #endif
  99.     p_filesize = filestat.st_size;
  100.     next_intuit_at(0L,1L);            /* start at the beginning */
  101.     set_hunkmax();
  102. }
  103.  
  104. /* Make sure our dynamically realloced tables are malloced to begin with. */
  105.  
  106. void
  107. set_hunkmax()
  108. {
  109. #ifndef lint
  110.     if (p_line == Null(char**))
  111.     p_line = (char**) malloc((MEM)hunkmax * sizeof(char *));
  112.     if (p_len == Null(short*))
  113.     p_len  = (short*) malloc((MEM)hunkmax * sizeof(short));
  114. #endif
  115.     if (p_char == Nullch)
  116.     p_char = (char*)  malloc((MEM)hunkmax * sizeof(char));
  117. }
  118.  
  119. /* Enlarge the arrays containing the current hunk of patch. */
  120.  
  121. void
  122. grow_hunkmax()
  123. {
  124.     hunkmax *= 2;
  125.     /* 
  126.      * Note that on most systems, only the p_line array ever gets fresh memory
  127.      * since p_len can move into p_line's old space, and p_char can move into
  128.      * p_len's old space.  Not on PDP-11's however.  But it doesn't matter.
  129.      */
  130.     assert(p_line != Null(char**) && p_len != Null(short*) && p_char != Nullch);
  131. #ifndef lint
  132.     p_line = (char**) realloc((char*)p_line, (MEM)hunkmax * sizeof(char *));
  133.     p_len  = (short*) realloc((char*)p_len,  (MEM)hunkmax * sizeof(short));
  134.     p_char = (char*)  realloc((char*)p_char, (MEM)hunkmax * sizeof(char));
  135. #endif
  136.     if (p_line != Null(char**) && p_len != Null(short*) && p_char != Nullch)
  137.     return;
  138.     if (!using_plan_a)
  139.     fatal1("patch: out of memory (grow_hunkmax)\n");
  140.     out_of_mem = TRUE;        /* whatever is null will be allocated again */
  141.                 /* from within plan_a(), of all places */
  142. }
  143.  
  144. /* True if the remainder of the patch file contains a diff of some sort. */
  145.  
  146. bool
  147. there_is_another_patch()
  148. {
  149.     if (p_base != 0L && p_base >= p_filesize) {
  150.     if (verbose)
  151.         say1("done\n");
  152.     return FALSE;
  153.     }
  154.     if (verbose)
  155.     say1("Hmm...");
  156.     diff_type = intuit_diff_type();
  157.     if (!diff_type) {
  158.     if (p_base != 0L) {
  159.         if (verbose)
  160.         say1("  Ignoring the trailing garbage.\ndone\n");
  161.     }
  162.     else
  163.         say1("  I can't seem to find a patch in there anywhere.\n");
  164.     return FALSE;
  165.     }
  166.     if (verbose)
  167.     say3("  %sooks like %s to me...\n",
  168.         (p_base == 0L ? "L" : "The next patch l"),
  169.         diff_type == CONTEXT_DIFF ? "a context diff" :
  170.         diff_type == NEW_CONTEXT_DIFF ? "a new-style context diff" :
  171.         diff_type == NORMAL_DIFF ? "a normal diff" :
  172.         "an ed script" );
  173.     if (p_indent && verbose)
  174.     say3("(Patch is indented %d space%s.)\n", p_indent, p_indent==1?"":"s");
  175.     skip_to(p_start,p_sline);
  176.     while (filearg[0] == Nullch) {
  177.     if (force) {
  178.         say1("No file to patch.  Skipping...\n");
  179.         filearg[0] = savestr(bestguess);
  180.         return TRUE;
  181.     }
  182.     ask1("File to patch: ");
  183.     if (*buf != '\n') {
  184.         if (bestguess)
  185.         free(bestguess);
  186.         bestguess = savestr(buf);
  187.         filearg[0] = fetchname(buf, 0, FALSE);
  188.     }
  189.     if (filearg[0] == Nullch) {
  190.         ask1("No file found--skip this patch? [n] ");
  191.         if (*buf != 'y') {
  192.         continue;
  193.         }
  194.         if (verbose)
  195.         say1("Skipping patch...\n");
  196.         filearg[0] = fetchname(bestguess, 0, TRUE);
  197.         skip_rest_of_patch = TRUE;
  198.         return TRUE;
  199.     }
  200.     }
  201.     return TRUE;
  202. }
  203.  
  204. /* Determine what kind of diff is in the remaining part of the patch file. */
  205.  
  206. int
  207. intuit_diff_type()
  208. {
  209.     Reg4 long this_line = 0;
  210.     Reg5 long previous_line;
  211.     Reg6 long first_command_line = -1;
  212.     long fcl_line;
  213.     Reg7 bool last_line_was_command = FALSE;
  214.     Reg8 bool this_is_a_command = FALSE;
  215.     Reg9 bool stars_last_line = FALSE;
  216.     Reg10 bool stars_this_line = FALSE;
  217.     Reg3 int indent;
  218.     Reg1 char *s;
  219.     Reg2 char *t;
  220.     char *indtmp = Nullch;
  221.     char *oldtmp = Nullch;
  222.     char *newtmp = Nullch;
  223.     char *indname = Nullch;
  224.     char *oldname = Nullch;
  225.     char *newname = Nullch;
  226.     Reg11 int retval;
  227.     bool no_filearg = (filearg[0] == Nullch);
  228.  
  229.     ok_to_create_file = FALSE;
  230.     Fseek(pfp, p_base, 0);
  231.     p_input_line = p_bline - 1;
  232.     for (;;) {
  233.     previous_line = this_line;
  234.     last_line_was_command = this_is_a_command;
  235.     stars_last_line = stars_this_line;
  236.     this_line = ftell(pfp);
  237.     indent = 0;
  238.     p_input_line++;
  239.     if (fgets(buf, sizeof buf, pfp) == Nullch) {
  240.         if (first_command_line >= 0L) {
  241.                     /* nothing but deletes!? */
  242.         p_start = first_command_line;
  243.         p_sline = fcl_line;
  244.         retval = ED_DIFF;
  245.         goto scan_exit;
  246.         }
  247.         else {
  248.         p_start = this_line;
  249.         p_sline = p_input_line;
  250.         retval = 0;
  251.         goto scan_exit;
  252.         }
  253.     }
  254.     for (s = buf; *s == ' ' || *s == '\t' || *s == 'X'; s++) {
  255.         if (*s == '\t')
  256.         indent += 8 - (indent % 8);
  257.         else
  258.         indent++;
  259.     }
  260.     for (t=s; isdigit(*t) || *t == ','; t++) ; 
  261.     this_is_a_command = (isdigit(*s) &&
  262.       (*t == 'd' || *t == 'c' || *t == 'a') );
  263.     if (first_command_line < 0L && this_is_a_command) { 
  264.         first_command_line = this_line;
  265.         fcl_line = p_input_line;
  266.         p_indent = indent;        /* assume this for now */
  267.     }
  268.     if (!stars_last_line && strnEQ(s, "*** ", 4))
  269.         oldtmp = savestr(s+4);
  270.     else if (strnEQ(s, "--- ", 4))
  271.         newtmp = savestr(s+4);
  272.     else if (strnEQ(s, "Index:", 6))
  273.         indtmp = savestr(s+6);
  274.     else if (strnEQ(s, "Prereq:", 7)) {
  275.         for (t=s+7; isspace(*t); t++) ;
  276.         revision = savestr(t);
  277.         for (t=revision; *t && !isspace(*t); t++) ;
  278.         *t = '\0';
  279.         if (!*revision) {
  280.         free(revision);
  281.         revision = Nullch;
  282.         }
  283.     }
  284.     if ((!diff_type || diff_type == ED_DIFF) &&
  285.       first_command_line >= 0L &&
  286.       strEQ(s, ".\n") ) {
  287.         p_indent = indent;
  288.         p_start = first_command_line;
  289.         p_sline = fcl_line;
  290.         retval = ED_DIFF;
  291.         goto scan_exit;
  292.     }
  293.     stars_this_line = strnEQ(s, "********", 8);
  294.     if ((!diff_type || diff_type == CONTEXT_DIFF) && stars_last_line &&
  295.          strnEQ(s, "*** ", 4)) {
  296.         if (!atol(s+4))
  297.         ok_to_create_file = TRUE;
  298.         /* if this is a new context diff the character just before */
  299.         /* the newline is a '*'. */
  300.         while (*s != '\n')
  301.         s++;
  302.         p_indent = indent;
  303.         p_start = previous_line;
  304.         p_sline = p_input_line - 1;
  305.         retval = (*(s-1) == '*' ? NEW_CONTEXT_DIFF : CONTEXT_DIFF);
  306.         goto scan_exit;
  307.     }
  308.     if ((!diff_type || diff_type == NORMAL_DIFF) && 
  309.       last_line_was_command &&
  310.       (strnEQ(s, "< ", 2) || strnEQ(s, "> ", 2)) ) {
  311.         p_start = previous_line;
  312.         p_sline = p_input_line - 1;
  313.         p_indent = indent;
  314.         retval = NORMAL_DIFF;
  315.         goto scan_exit;
  316.     }
  317.     }
  318.   scan_exit:
  319.     if (no_filearg) {
  320.     if (indtmp != Nullch)
  321.         indname = fetchname(indtmp, strippath, ok_to_create_file);
  322.     if (oldtmp != Nullch)
  323.         oldname = fetchname(oldtmp, strippath, ok_to_create_file);
  324.     if (newtmp != Nullch)
  325.         newname = fetchname(newtmp, strippath, ok_to_create_file);
  326.     if (oldname && newname) {
  327.         if (strlen(oldname) < strlen(newname))
  328.         filearg[0] = savestr(oldname);
  329.         else
  330.         filearg[0] = savestr(newname);
  331.     }
  332.     else if (oldname)
  333.         filearg[0] = savestr(oldname);
  334.     else if (newname)
  335.         filearg[0] = savestr(newname);
  336.     else if (indname)
  337.         filearg[0] = savestr(indname);
  338.     }
  339.     if (bestguess) {
  340.     free(bestguess);
  341.     bestguess = Nullch;
  342.     }
  343.     if (filearg[0] != Nullch)
  344.     bestguess = savestr(filearg[0]);
  345.     else if (indtmp != Nullch)
  346.     bestguess = fetchname(indtmp, strippath, TRUE);
  347.     else {
  348.     if (oldtmp != Nullch)
  349.         oldname = fetchname(oldtmp, strippath, TRUE);
  350.     if (newtmp != Nullch)
  351.         newname = fetchname(newtmp, strippath, TRUE);
  352.     if (oldname && newname) {
  353.         if (strlen(oldname) < strlen(newname))
  354.         bestguess = savestr(oldname);
  355.         else
  356.         bestguess = savestr(newname);
  357.     }
  358.     else if (oldname)
  359.         bestguess = savestr(oldname);
  360.     else if (newname)
  361.         bestguess = savestr(newname);
  362.     }
  363.     if (indtmp != Nullch)
  364.     free(indtmp);
  365.     if (oldtmp != Nullch)
  366.     free(oldtmp);
  367.     if (newtmp != Nullch)
  368.     free(newtmp);
  369.     if (indname != Nullch)
  370.     free(indname);
  371.     if (oldname != Nullch)
  372.     free(oldname);
  373.     if (newname != Nullch)
  374.     free(newname);
  375.     return retval;
  376. }
  377.  
  378. /* Remember where this patch ends so we know where to start up again. */
  379.  
  380. void
  381. next_intuit_at(file_pos,file_line)
  382. long file_pos;
  383. long file_line;
  384. {
  385.     p_base = file_pos;
  386.     p_bline = file_line;
  387. }
  388.  
  389. /* Basically a verbose fseek() to the actual diff listing. */
  390.  
  391. void
  392. skip_to(file_pos,file_line)
  393. long file_pos;
  394. long file_line;
  395. {
  396.     char *ret;
  397.  
  398.     assert(p_base <= file_pos);
  399.     if (verbose && p_base < file_pos) {
  400.     Fseek(pfp, p_base, 0);
  401.     say1("The text leading up to this was:\n--------------------------\n");
  402.     while (ftell(pfp) < file_pos) {
  403.         ret = fgets(buf, sizeof buf, pfp);
  404.         assert(ret != Nullch);
  405.         say2("|%s", buf);
  406.     }
  407.     say1("--------------------------\n");
  408.     }
  409.     else
  410.     Fseek(pfp, file_pos, 0);
  411.     p_input_line = file_line - 1;
  412. }
  413.  
  414. /* True if there is more of the current diff listing to process. */
  415.  
  416. bool
  417. another_hunk()
  418. {
  419.     Reg1 char *s;
  420.     Reg8 char *ret;
  421.     Reg2 int context = 0;
  422.  
  423.     while (p_end >= 0) {
  424.     if (p_end == p_efake)
  425.         p_end = p_bfake;        /* don't free twice */
  426.     else
  427.         free(p_line[p_end]);
  428.     p_end--;
  429.     }
  430.     assert(p_end == -1);
  431.     p_efake = -1;
  432.  
  433.     p_max = hunkmax;            /* gets reduced when --- found */
  434.     if (diff_type == CONTEXT_DIFF || diff_type == NEW_CONTEXT_DIFF) {
  435.     long line_beginning = ftell(pfp);
  436.                     /* file pos of the current line */
  437.     LINENUM repl_beginning = 0;    /* index of --- line */
  438.     Reg4 LINENUM fillcnt = 0;    /* #lines of missing ptrn or repl */
  439.     Reg5 LINENUM fillsrc;        /* index of first line to copy */
  440.     Reg6 LINENUM filldst;        /* index of first missing line */
  441.     bool ptrn_spaces_eaten = FALSE;    /* ptrn was slightly misformed */
  442.     Reg9 bool repl_could_be_missing = TRUE;
  443.                     /* no + or ! lines in this hunk */
  444.     bool repl_missing = FALSE;    /* we are now backtracking */
  445.     long repl_backtrack_position = 0;
  446.                     /* file pos of first repl line */
  447.     LINENUM repl_patch_line;    /* input line number for same */
  448.     Reg7 LINENUM ptrn_copiable = 0;
  449.                     /* # of copiable lines in ptrn */
  450.  
  451.     ret = pgets(buf, sizeof buf, pfp);
  452.     p_input_line++;
  453.     if (ret == Nullch || strnNE(buf, "********", 8)) {
  454.         next_intuit_at(line_beginning,p_input_line);
  455.         return FALSE;
  456.     }
  457.     p_context = 100;
  458.     p_hunk_beg = p_input_line + 1;
  459.     while (p_end < p_max) {
  460.         line_beginning = ftell(pfp);
  461.         ret = pgets(buf, sizeof buf, pfp);
  462.         p_input_line++;
  463.         if (ret == Nullch) {
  464.         if (p_max - p_end < 4)
  465.             Strcpy(buf, "  \n");  /* assume blank lines got chopped */
  466.         else {
  467.             if (repl_beginning && repl_could_be_missing) {
  468.             repl_missing = TRUE;
  469.             goto hunk_done;
  470.             }
  471.             fatal1("Unexpected end of file in patch.\n");
  472.         }
  473.         }
  474.         p_end++;
  475.         assert(p_end < hunkmax);
  476.         p_char[p_end] = *buf;
  477. #ifdef zilog
  478.         p_line[(short)p_end] = Nullch;
  479. #else
  480.         p_line[p_end] = Nullch;
  481. #endif
  482.         switch (*buf) {
  483.         case '*':
  484.         if (strnEQ(buf, "********", 8)) {
  485.             if (repl_beginning && repl_could_be_missing) {
  486.             repl_missing = TRUE;
  487.             goto hunk_done;
  488.             }
  489.             else
  490.             fatal2("Unexpected end of hunk at line %ld.\n",
  491.                 p_input_line);
  492.         }
  493.         if (p_end != 0) {
  494.             if (repl_beginning && repl_could_be_missing) {
  495.             repl_missing = TRUE;
  496.             goto hunk_done;
  497.             }
  498.             fatal3("Unexpected *** at line %ld: %s", p_input_line, buf);
  499.         }
  500.         context = 0;
  501.         p_line[p_end] = savestr(buf);
  502.         if (out_of_mem) {
  503.             p_end--;
  504.             return FALSE;
  505.         }
  506.         for (s=buf; *s && !isdigit(*s); s++) ;
  507.         if (!*s)
  508.             goto malformed;
  509.         if (strnEQ(s,"0,0",3))
  510.             strcpy(s,s+2);
  511.         p_first = (LINENUM) atol(s);
  512.         while (isdigit(*s)) s++;
  513.         if (*s == ',') {
  514.             for (; *s && !isdigit(*s); s++) ;
  515.             if (!*s)
  516.             goto malformed;
  517.             p_ptrn_lines = ((LINENUM)atol(s)) - p_first + 1;
  518.         }
  519.         else if (p_first)
  520.             p_ptrn_lines = 1;
  521.         else {
  522.             p_ptrn_lines = 0;
  523.             p_first = 1;
  524.         }
  525.         p_max = p_ptrn_lines + 6;    /* we need this much at least */
  526.         while (p_max >= hunkmax)
  527.             grow_hunkmax();
  528.         p_max = hunkmax;
  529.         break;
  530.         case '-':
  531.         if (buf[1] == '-') {
  532.             if (repl_beginning ||
  533.             (p_end != p_ptrn_lines + 1 + (p_char[p_end-1] == '\n')))
  534.             {
  535.             if (p_end == 1) {
  536.                 /* `old' lines were omitted - set up to fill */
  537.                 /* them in from 'new' context lines. */
  538.                 p_end = p_ptrn_lines + 1;
  539.                 fillsrc = p_end + 1;
  540.                 filldst = 1;
  541.                 fillcnt = p_ptrn_lines;
  542.             }
  543.             else {
  544.                 if (repl_beginning) {
  545.                 if (repl_could_be_missing){
  546.                     repl_missing = TRUE;
  547.                     goto hunk_done;
  548.                 }
  549.                 fatal3(
  550. "Duplicate \"---\" at line %ld--check line numbers at line %ld.\n",
  551.                     p_input_line, p_hunk_beg + repl_beginning);
  552.                 }
  553.                 else {
  554.                 fatal4(
  555. "%s \"---\" at line %ld--check line numbers at line %ld.\n",
  556.                     (p_end <= p_ptrn_lines
  557.                     ? "Premature"
  558.                     : "Overdue" ),
  559.                     p_input_line, p_hunk_beg);
  560.                 }
  561.             }
  562.             }
  563.             repl_beginning = p_end;
  564.             repl_backtrack_position = ftell(pfp);
  565.             repl_patch_line = p_input_line;
  566.             p_line[p_end] = savestr(buf);
  567.             if (out_of_mem) {
  568.             p_end--;
  569.             return FALSE;
  570.             }
  571.             p_char[p_end] = '=';
  572.             for (s=buf; *s && !isdigit(*s); s++) ;
  573.             if (!*s)
  574.             goto malformed;
  575.             p_newfirst = (LINENUM) atol(s);
  576.             while (isdigit(*s)) s++;
  577.             if (*s == ',') {
  578.             for (; *s && !isdigit(*s); s++) ;
  579.             if (!*s)
  580.                 goto malformed;
  581.             p_repl_lines = ((LINENUM)atol(s)) - p_newfirst + 1;
  582.             }
  583.             else if (p_newfirst)
  584.             p_repl_lines = 1;
  585.             else {
  586.             p_repl_lines = 0;
  587.             p_newfirst = 1;
  588.             }
  589.             p_max = p_repl_lines + p_end;
  590.             if (p_max > MAXHUNKSIZE)
  591.             fatal4("Hunk too large (%ld lines) at line %ld: %s",
  592.                   p_max, p_input_line, buf);
  593.             while (p_max >= hunkmax)
  594.             grow_hunkmax();
  595.             if (p_repl_lines != ptrn_copiable)
  596.             repl_could_be_missing = FALSE;
  597.             break;
  598.         }
  599.         goto change_line;
  600.         case '+':  case '!':
  601.         repl_could_be_missing = FALSE;
  602.           change_line:
  603.         if (buf[1] == '\n' && canonicalize)
  604.             strcpy(buf+1," \n");
  605.         if (!isspace(buf[1]) && buf[1] != '>' && buf[1] != '<' &&
  606.           repl_beginning && repl_could_be_missing) {
  607.             repl_missing = TRUE;
  608.             goto hunk_done;
  609.         }
  610.         if (context > 0) {
  611.             if (context < p_context)
  612.             p_context = context;
  613.             context = -1000;
  614.         }
  615.         p_line[p_end] = savestr(buf+2);
  616.         if (out_of_mem) {
  617.             p_end--;
  618.             return FALSE;
  619.         }
  620.         break;
  621.         case '\t': case '\n':    /* assume the 2 spaces got eaten */
  622.         if (repl_beginning && repl_could_be_missing &&
  623.           (!ptrn_spaces_eaten || diff_type == NEW_CONTEXT_DIFF) ) {
  624.             repl_missing = TRUE;
  625.             goto hunk_done;
  626.         }
  627.         p_line[p_end] = savestr(buf);
  628.         if (out_of_mem) {
  629.             p_end--;
  630.             return FALSE;
  631.         }
  632.         if (p_end != p_ptrn_lines + 1) {
  633.             ptrn_spaces_eaten |= (repl_beginning != 0);
  634.             context++;
  635.             if (!repl_beginning)
  636.             ptrn_copiable++;
  637.             p_char[p_end] = ' ';
  638.         }
  639.         break;
  640.         case ' ':
  641.         if (!isspace(buf[1]) &&
  642.           repl_beginning && repl_could_be_missing) {
  643.             repl_missing = TRUE;
  644.             goto hunk_done;
  645.         }
  646.         context++;
  647.         if (!repl_beginning)
  648.             ptrn_copiable++;
  649.         p_line[p_end] = savestr(buf+2);
  650.         if (out_of_mem) {
  651.             p_end--;
  652.             return FALSE;
  653.         }
  654.         break;
  655.         default:
  656.         if (repl_beginning && repl_could_be_missing) {
  657.             repl_missing = TRUE;
  658.             goto hunk_done;
  659.         }
  660.         goto malformed;
  661.         }
  662.         /* set up p_len for strncmp() so we don't have to */
  663.         /* assume null termination */
  664.         if (p_line[p_end])
  665.         p_len[p_end] = strlen(p_line[p_end]);
  666.         else
  667.         p_len[p_end] = 0;
  668.     }
  669.     
  670.     hunk_done:
  671.     if (p_end >=0 && !repl_beginning)
  672.         fatal2("No --- found in patch at line %ld\n", pch_hunk_beg());
  673.  
  674.     if (repl_missing) {
  675.         
  676.         /* reset state back to just after --- */
  677.         p_input_line = repl_patch_line;
  678.         for (p_end--; p_end > repl_beginning; p_end--)
  679.         free(p_line[p_end]);
  680.         Fseek(pfp, repl_backtrack_position, 0);
  681.         
  682.         /* redundant 'new' context lines were omitted - set */
  683.         /* up to fill them in from the old file context */
  684.         fillsrc = 1;
  685.         filldst = repl_beginning+1;
  686.         fillcnt = p_repl_lines;
  687.         p_end = p_max;
  688.     }
  689.  
  690.     if (diff_type == CONTEXT_DIFF &&
  691.       (fillcnt || (p_first > 1 && ptrn_copiable > 2*p_context)) ) {
  692.         if (verbose)
  693.         say4("%s\n%s\n%s\n",
  694. "(Fascinating--this is really a new-style context diff but without",
  695. "the telltale extra asterisks on the *** line that usually indicate",
  696. "the new style...)");
  697.         diff_type = NEW_CONTEXT_DIFF;
  698.     }
  699.     
  700.     /* if there were omitted context lines, fill them in now */
  701.     if (fillcnt) {
  702.         p_bfake = filldst;        /* remember where not to free() */
  703.         p_efake = filldst + fillcnt - 1;
  704.         while (fillcnt-- > 0) {
  705.         while (fillsrc <= p_end && p_char[fillsrc] != ' ')
  706.             fillsrc++;
  707.         if (fillsrc > p_end)
  708.             fatal2("Replacement text or line numbers mangled in hunk at line %ld\n",
  709.             p_hunk_beg);
  710.         p_line[filldst] = p_line[fillsrc];
  711.         p_char[filldst] = p_char[fillsrc];
  712.         p_len[filldst] = p_len[fillsrc];
  713.         fillsrc++; filldst++;
  714.         }
  715.         while (fillsrc <= p_end && fillsrc != repl_beginning &&
  716.           p_char[fillsrc] != ' ')
  717.         fillsrc++;
  718. #ifdef DEBUGGING
  719.         if (debug & 64)
  720.         printf("fillsrc %ld, filldst %ld, rb %ld, e+1 %ld\n",
  721.             fillsrc,filldst,repl_beginning,p_end+1);
  722. #endif
  723.         assert(fillsrc==p_end+1 || fillsrc==repl_beginning);
  724.         assert(filldst==p_end+1 || filldst==repl_beginning);
  725.     }
  726.     }
  727.     else {                /* normal diff--fake it up */
  728.     char hunk_type;
  729.     Reg3 int i;
  730.     LINENUM min, max;
  731.     long line_beginning = ftell(pfp);
  732.  
  733.     p_context = 0;
  734.     ret = pgets(buf, sizeof buf, pfp);
  735.     p_input_line++;
  736.     if (ret == Nullch || !isdigit(*buf)) {
  737.         next_intuit_at(line_beginning,p_input_line);
  738.         return FALSE;
  739.     }
  740.     p_first = (LINENUM)atol(buf);
  741.     for (s=buf; isdigit(*s); s++) ;
  742.     if (*s == ',') {
  743.         p_ptrn_lines = (LINENUM)atol(++s) - p_first + 1;
  744.         while (isdigit(*s)) s++;
  745.     }
  746.     else
  747.         p_ptrn_lines = (*s != 'a');
  748.     hunk_type = *s;
  749.     if (hunk_type == 'a')
  750.         p_first++;            /* do append rather than insert */
  751.     min = (LINENUM)atol(++s);
  752.     for (; isdigit(*s); s++) ;
  753.     if (*s == ',')
  754.         max = (LINENUM)atol(++s);
  755.     else
  756.         max = min;
  757.     if (hunk_type == 'd')
  758.         min++;
  759.     p_end = p_ptrn_lines + 1 + max - min + 1;
  760.     if (p_end > MAXHUNKSIZE)
  761.         fatal4("Hunk too large (%ld lines) at line %ld: %s",
  762.           p_end, p_input_line, buf);
  763.     while (p_end >= hunkmax)
  764.         grow_hunkmax();
  765.     p_newfirst = min;
  766.     p_repl_lines = max - min + 1;
  767.     Sprintf(buf, "*** %ld,%ld\n", p_first, p_first + p_ptrn_lines - 1);
  768.     p_line[0] = savestr(buf);
  769.     if (out_of_mem) {
  770.         p_end = -1;
  771.         return FALSE;
  772.     }
  773.     p_char[0] = '*';
  774.     for (i=1; i<=p_ptrn_lines; i++) {
  775.         ret = pgets(buf, sizeof buf, pfp);
  776.         p_input_line++;
  777.         if (ret == Nullch)
  778.         fatal2("Unexpected end of file in patch at line %ld.\n",
  779.           p_input_line);
  780.         if (*buf != '<')
  781.         fatal2("< expected at line %ld of patch.\n", p_input_line);
  782.         p_line[i] = savestr(buf+2);
  783.         if (out_of_mem) {
  784.         p_end = i-1;
  785.         return FALSE;
  786.         }
  787.         p_len[i] = strlen(p_line[i]);
  788.         p_char[i] = '-';
  789.     }
  790.     if (hunk_type == 'c') {
  791.         ret = pgets(buf, sizeof buf, pfp);
  792.         p_input_line++;
  793.         if (ret == Nullch)
  794.         fatal2("Unexpected end of file in patch at line %ld.\n",
  795.             p_input_line);
  796.         if (*buf != '-')
  797.         fatal2("--- expected at line %ld of patch.\n", p_input_line);
  798.     }
  799.     Sprintf(buf, "--- %ld,%ld\n", min, max);
  800.     p_line[i] = savestr(buf);
  801.     if (out_of_mem) {
  802.         p_end = i-1;
  803.         return FALSE;
  804.     }
  805.     p_char[i] = '=';
  806.     for (i++; i<=p_end; i++) {
  807.         ret = pgets(buf, sizeof buf, pfp);
  808.         p_input_line++;
  809.         if (ret == Nullch)
  810.         fatal2("Unexpected end of file in patch at line %ld.\n",
  811.             p_input_line);
  812.         if (*buf != '>')
  813.         fatal2("> expected at line %ld of patch.\n", p_input_line);
  814.         p_line[i] = savestr(buf+2);
  815.         if (out_of_mem) {
  816.         p_end = i-1;
  817.         return FALSE;
  818.         }
  819.         p_len[i] = strlen(p_line[i]);
  820.         p_char[i] = '+';
  821.     }
  822.     }
  823.     if (reverse)            /* backwards patch? */
  824.     if (!pch_swap())
  825.         say1("Not enough memory to swap next hunk!\n");
  826. #ifdef DEBUGGING
  827.     if (debug & 2) {
  828.     int i;
  829.     char special;
  830.  
  831.     for (i=0; i <= p_end; i++) {
  832.         if (i == p_ptrn_lines)
  833.         special = '^';
  834.         else
  835.         special = ' ';
  836.         fprintf(stderr, "%3d %c %c %s", i, p_char[i], special, p_line[i]);
  837.         Fflush(stderr);
  838.     }
  839.     }
  840. #endif
  841.     if (p_end+1 < hunkmax)    /* paranoia reigns supreme... */
  842.     p_char[p_end+1] = '^';  /* add a stopper for apply_hunk */
  843.     return TRUE;
  844.  
  845. malformed:
  846.     fatal3("Malformed patch at line %ld: %s", p_input_line, buf);
  847.         /* about as informative as "Syntax error" in C */
  848.     return FALSE;    /* for lint */
  849. }
  850.  
  851. /* Input a line from the patch file, worrying about indentation. */
  852.  
  853. char *
  854. pgets(bf,sz,fp)
  855. char *bf;
  856. int sz;
  857. FILE *fp;
  858. {
  859.     char *ret = fgets(bf, sz, fp);
  860.     Reg1 char *s;
  861.     Reg2 int indent = 0;
  862.  
  863.     if (p_indent && ret != Nullch) {
  864.     for (s=buf;
  865.       indent < p_indent && (*s == ' ' || *s == '\t' || *s == 'X'); s++) {
  866.         if (*s == '\t')
  867.         indent += 8 - (indent % 7);
  868.         else
  869.         indent++;
  870.     }
  871.     if (buf != s)
  872.         Strcpy(buf, s);
  873.     }
  874.     return ret;
  875. }
  876.  
  877. /* Reverse the old and new portions of the current hunk. */
  878.  
  879. bool
  880. pch_swap()
  881. {
  882.     char **tp_line;        /* the text of the hunk */
  883.     short *tp_len;        /* length of each line */
  884.     char *tp_char;        /* +, -, and ! */
  885.     Reg1 LINENUM i;
  886.     Reg2 LINENUM n;
  887.     bool blankline = FALSE;
  888.     Reg3 char *s;
  889.  
  890.     i = p_first;
  891.     p_first = p_newfirst;
  892.     p_newfirst = i;
  893.     
  894.     /* make a scratch copy */
  895.  
  896.     tp_line = p_line;
  897.     tp_len = p_len;
  898.     tp_char = p_char;
  899.     p_line = Null(char**);    /* force set_hunkmax to allocate again */
  900.     p_len = Null(short*);
  901.     p_char = Nullch;
  902.     set_hunkmax();
  903.     if (p_line == Null(char**) || p_len == Null(short*) || p_char == Nullch) {
  904. #ifndef lint
  905.     if (p_line == Null(char**))
  906.         free((char*)p_line);
  907.     p_line = tp_line;
  908.     if (p_len == Null(short*))
  909.         free((char*)p_len);
  910.     p_len = tp_len;
  911. #endif
  912.     if (p_char == Nullch)
  913.         free((char*)p_char);
  914.     p_char = tp_char;
  915.     return FALSE;        /* not enough memory to swap hunk! */
  916.     }
  917.  
  918.     /* now turn the new into the old */
  919.  
  920.     i = p_ptrn_lines + 1;
  921.     if (tp_char[i] == '\n') {        /* account for possible blank line */
  922.     blankline = TRUE;
  923.     i++;
  924.     }
  925.     if (p_efake >= 0) {            /* fix non-freeable ptr range */
  926.     if (p_efake <= i)
  927.         n = p_end - i + 1;
  928.     else
  929.         n = -i;
  930.     p_efake += n;
  931.     p_bfake += n;
  932.     }
  933.     for (n=0; i <= p_end; i++,n++) {
  934.     p_line[n] = tp_line[i];
  935.     p_char[n] = tp_char[i];
  936.     if (p_char[n] == '+')
  937.         p_char[n] = '-';
  938.     p_len[n] = tp_len[i];
  939.     }
  940.     if (blankline) {
  941.     i = p_ptrn_lines + 1;
  942.     p_line[n] = tp_line[i];
  943.     p_char[n] = tp_char[i];
  944.     p_len[n] = tp_len[i];
  945.     n++;
  946.     }
  947.     assert(p_char[0] == '=');
  948.     p_char[0] = '*';
  949.     for (s=p_line[0]; *s; s++)
  950.     if (*s == '-')
  951.         *s = '*';
  952.  
  953.     /* now turn the old into the new */
  954.  
  955.     assert(tp_char[0] == '*');
  956.     tp_char[0] = '=';
  957.     for (s=tp_line[0]; *s; s++)
  958.     if (*s == '*')
  959.         *s = '-';
  960.     for (i=0; n <= p_end; i++,n++) {
  961.     p_line[n] = tp_line[i];
  962.     p_char[n] = tp_char[i];
  963.     if (p_char[n] == '-')
  964.         p_char[n] = '+';
  965.     p_len[n] = tp_len[i];
  966.     }
  967.     assert(i == p_ptrn_lines + 1);
  968.     i = p_ptrn_lines;
  969.     p_ptrn_lines = p_repl_lines;
  970.     p_repl_lines = i;
  971. #ifndef lint
  972.     if (tp_line == Null(char**))
  973.     free((char*)tp_line);
  974.     if (tp_len == Null(short*))
  975.     free((char*)tp_len);
  976. #endif
  977.     if (tp_char == Nullch)
  978.     free((char*)tp_char);
  979.     return TRUE;
  980. }
  981.  
  982. /* Return the specified line position in the old file of the old context. */
  983.  
  984. LINENUM
  985. pch_first()
  986. {
  987.     return p_first;
  988. }
  989.  
  990. /* Return the number of lines of old context. */
  991.  
  992. LINENUM
  993. pch_ptrn_lines()
  994. {
  995.     return p_ptrn_lines;
  996. }
  997.  
  998. /* Return the probable line position in the new file of the first line. */
  999.  
  1000. LINENUM
  1001. pch_newfirst()
  1002. {
  1003.     return p_newfirst;
  1004. }
  1005.  
  1006. /* Return the number of lines in the replacement text including context. */
  1007.  
  1008. LINENUM
  1009. pch_repl_lines()
  1010. {
  1011.     return p_repl_lines;
  1012. }
  1013.  
  1014. /* Return the number of lines in the whole hunk. */
  1015.  
  1016. LINENUM
  1017. pch_end()
  1018. {
  1019.     return p_end;
  1020. }
  1021.  
  1022. /* Return the number of context lines before the first changed line. */
  1023.  
  1024. LINENUM
  1025. pch_context()
  1026. {
  1027.     return p_context;
  1028. }
  1029.  
  1030. /* Return the length of a particular patch line. */
  1031.  
  1032. short
  1033. pch_line_len(line)
  1034. LINENUM line;
  1035. {
  1036.     return p_len[line];
  1037. }
  1038.  
  1039. /* Return the control character (+, -, *, !, etc) for a patch line. */
  1040.  
  1041. char
  1042. pch_char(line)
  1043. LINENUM line;
  1044. {
  1045.     return p_char[line];
  1046. }
  1047.  
  1048. /* Return a pointer to a particular patch line. */
  1049.  
  1050. char *
  1051. pfetch(line)
  1052. LINENUM line;
  1053. {
  1054.     return p_line[line];
  1055. }
  1056.  
  1057. /* Return where in the patch file this hunk began, for error messages. */
  1058.  
  1059. LINENUM
  1060. pch_hunk_beg()
  1061. {
  1062.     return p_hunk_beg;
  1063. }
  1064.  
  1065. /* Apply an ed script by feeding ed itself. */
  1066.  
  1067. void
  1068. do_ed_script()
  1069. {
  1070.     Reg1 char *t;
  1071.     Reg2 long beginning_of_this_line;
  1072.     Reg3 bool this_line_is_command = FALSE;
  1073.     Reg4 FILE *pipefp;
  1074.     FILE *popen();
  1075.  
  1076.     if (!skip_rest_of_patch) {
  1077.     Unlink(TMPOUTNAME);
  1078.     copy_file(filearg[0], TMPOUTNAME);
  1079.     if (verbose)
  1080.         Sprintf(buf, "/bin/ed %s", TMPOUTNAME);
  1081.     else
  1082.         Sprintf(buf, "/bin/ed - %s", TMPOUTNAME);
  1083.     pipefp = popen(buf, "w");
  1084.     }
  1085.     for (;;) {
  1086.     beginning_of_this_line = ftell(pfp);
  1087.     if (pgets(buf, sizeof buf, pfp) == Nullch) {
  1088.         next_intuit_at(beginning_of_this_line,p_input_line);
  1089.         break;
  1090.     }
  1091.     p_input_line++;
  1092.     for (t=buf; isdigit(*t) || *t == ','; t++) ;
  1093.     this_line_is_command = (isdigit(*buf) &&
  1094.       (*t == 'd' || *t == 'c' || *t == 'a') );
  1095.     if (this_line_is_command) {
  1096.         if (!skip_rest_of_patch)
  1097.         fputs(buf, pipefp);
  1098.         if (*t != 'd') {
  1099.         while (pgets(buf, sizeof buf, pfp) != Nullch) {
  1100.             p_input_line++;
  1101.             if (!skip_rest_of_patch)
  1102.             fputs(buf, pipefp);
  1103.             if (strEQ(buf, ".\n"))
  1104.             break;
  1105.         }
  1106.         }
  1107.     }
  1108.     else {
  1109.         next_intuit_at(beginning_of_this_line,p_input_line);
  1110.         break;
  1111.     }
  1112.     }
  1113.     if (skip_rest_of_patch)
  1114.     return;
  1115.     fprintf(pipefp, "w\n");
  1116.     fprintf(pipefp, "q\n");
  1117.     Fflush(pipefp);
  1118.     Pclose(pipefp);
  1119.     ignore_signals();
  1120.     if (move_file(TMPOUTNAME, outname) < 0) {
  1121.     toutkeep = TRUE;
  1122.     chmod(TMPOUTNAME, filemode);
  1123.     }
  1124.     else
  1125.     chmod(outname, filemode);
  1126.     set_signals(1);
  1127. }
  1128.  
  1129.